Add g_intern_static_string to valgrind suppressions
authorMatthias Clasen <mclasen@redhat.com>
Sun, 28 Jun 2020 15:58:25 +0000 (11:58 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 28 Jun 2020 17:42:02 +0000 (13:42 -0400)
That function can also trigger a quark table reallocation.

gtk.supp

index 87ce6d2ec67141653be55a88160ec1a5be69c5d0..56ec710493cad816c4878d808e2eaea4839f0140 100644 (file)
--- a/gtk.supp
+++ b/gtk.supp
   ...
   fun:g_quark_*
 }
+{
+  glib GQuark
+  Memcheck:Leak
+  match-leak-kinds: definite
+  fun:malloc
+  ...
+  fun:g_intern_static_string
+}